QuickAutoSize Property (FlexGridBase<T>)
In This Topic
Gets or sets a value that determines whether the grid should optimize performance over precision when auto-sizing columns.
Syntax
'Declaration
Public Overridable Property QuickAutoSize As System.Nullable(Of Boolean)
'Usage
Dim instance As FlexGridBase(Of T)
Dim value As System.Nullable(Of Boolean)
instance.QuickAutoSize = value
value = instance.QuickAutoSize
public virtual System.Nullable<bool> QuickAutoSize {get; set;}
public read-write property QuickAutoSize: System.Nullable; virtual;
public function get,set QuickAutoSize : System.Nullable
public: __property virtual System.Nullable<bool> get_QuickAutoSize();
public: __property virtual void set_QuickAutoSize(
System.Nullable<bool> value
);
public:
virtual property System.Nullable<bool> QuickAutoSize {
System.Nullable<bool> get();
void set ( System.Nullable<bool> value);
}
See Also